David Lang Apps

Partick Thistle FC 1.20
David Lang
An Unofficial Thistle Android App.A basic app that had quick links to Thistle related news ontheweb, the BBC is the only place this information is availableinmobile format, so the app provides links toLast League ResultFixturesTableThistle NewsDivision 1 ResultsThis is the first version, going to add morefunctionalitysoon.Any suggestions send me an email.
aPerfectTouch 11
David Lang
A perfect touch provides a hassle freesolutionto all re-touching and studio hire companies.We have single directories for £200 for thousands of contactsorthe elite list for £250Why waste time.....we have 1000's of creatives industrysuppliersreadily available to you at the click of a button...This app allows you to view thousands of contacts and viewtheirwebpage on your Android phone.
Java SCJP on Android 1.32
David Lang
333 Questions to help study for the SCJPSunCertified Programmer for Java 6 Exam.Asks a series of multiple choice questions to help study fortheSCJP Version 1.6 exam.The questions are displayed in random batches of 10 and ascoreis given at the end.If a question is answered incorrectly, the correct answerisdisplayed and explained. Exam tips are displayed for some oftheharder questions.An example question isWhat will be the result of attempting to compile and runthefollowing code?abstract class Base {abstract void amethod();static int i;}public class DLSoftwareSolutions extends Base{public static void main(String argv[]){int[] dl=new int[10];for(i=0;i < dl.length;i++)System.out.println(dl[i]);}}OPTIONS1) a sequence of 10 0's will be printed2) Error: dl is used before it is initialized3) Error: DLSoftwareSolutions must be declared abstract4) IndexOutOfBoundes ErrorANSWER 3The answer is 3) DLSoftwareSolutions must bedeclaredabstract.A class that contains an abstract method must itself bedeclaredas abstract.Exam Tip---------------------------------------------------abstract methods must be implemented by a subclass, so theymustbe inheritable.abstract methods cannot be private.abstract methods cannot be final.abstract methods may have parameters, a return type, andoptionalthrows clause, but are not implemented.abstract methods end in a semicolon-no curly braces.A single abstract method in a class means the whole class mustbeabstract.An abstract class can have both abstract andnonabstractmethods.